home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / freopen.c < prev    next >
C/C++ Source or Header  |  1991-12-13  |  3KB  |  99 lines

  1. /* 
  2.  * freopen.c --
  3.  *
  4.  *    Source code for the "freopen" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/freopen.c,v 1.7 91/11/21 18:12:58 jhh Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21. #include "fileInt.h"
  22. #include "stdlib.h"
  23. #include <sys/file.h>
  24.  
  25. /*
  26.  *----------------------------------------------------------------------
  27.  *
  28.  * freopen --
  29.  *
  30.  *    Close the file currently associated with a stream and then re-open
  31.  *    the stream on a new file.
  32.  *
  33.  * Results:
  34.  *    The return value is NULL if an error occurred in opening the
  35.  *    new file, or stream otherwise.
  36.  *
  37.  * Side effects:
  38.  *    A file is opened, and a stream is initialized.  Errors in closing
  39.  *    the old stream are ignored.
  40.  *
  41.  *----------------------------------------------------------------------
  42.  */
  43.  
  44. FILE *
  45. freopen(fileName, access, stream)
  46.     char *fileName;        /* Name of file to be opened. */
  47.     char *access;        /* Indicates type of access, just as for
  48.                  * fopen. */
  49.     FILE *stream;        /* Name of old stream to re-use. */
  50. {
  51.     int id, flags, read, write, oldFlags;
  52.  
  53.     if (stream->readProc != (void (*)()) StdioFileReadProc) {
  54.     return (FILE *) NULL;
  55.     }
  56.  
  57.     if (stream->flags != 0) {
  58.     fflush(stream);
  59.     id = (int) stream->clientData;
  60.     close(id);
  61.     }
  62.  
  63.     /*
  64.      * Open a new stream and let it re-use the old stream's structure.
  65.      */
  66.  
  67.     flags = StdioFileOpenMode(access);
  68.     if (flags == -1) {
  69.     return (FILE *) NULL;
  70.     }
  71.     id = open(fileName, flags, 0666);
  72.     if (id < 0) {
  73.     return (FILE *) NULL;
  74.     }
  75.     read = write = 0;
  76.     if ((access[1] == '+') || ((access[1] == 'b') && (access[2] == '+'))) {
  77.     read = write = 1;
  78.     } else if (access[0]  == 'r') {
  79.     read = 1;
  80.     } else {
  81.     write = 1;
  82.     }
  83.     if (access[0] == 'a') {
  84.     (void) lseek(id, 0L, L_XTND);
  85.     }
  86.     oldFlags = stream->flags & (STDIO_NOT_OUR_BUF | STDIO_LINEBUF);
  87.     if (!(stream->flags & STDIO_NOT_OUR_BUF)) {
  88.     Stdio_Setup(stream, read, write, stdioTempBuffer, 0,
  89.         StdioFileReadProc, StdioFileWriteProc, StdioFileCloseProc,
  90.         (ClientData) id);
  91.     } else {
  92.     Stdio_Setup(stream, read, write, stream->buffer, stream->bufSize,
  93.         StdioFileReadProc, StdioFileWriteProc, StdioFileCloseProc,
  94.         (ClientData) id);
  95.     }
  96.     stream->flags |= oldFlags;
  97.     return stream;
  98. }
  99.